home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / WEEKDAY.C < prev    next >
Encoding:
C/C++ Source or Header  |  1990-01-31  |  190 b   |  12 lines

  1. #include <time.h>
  2.  
  3. int WeekDay()
  4. {
  5.     struct tm  *timeptr;
  6.     time_t      secsnow;
  7.  
  8.     time( &secsnow );
  9.     timeptr = localtime( &secsnow );
  10.     return( timeptr->tm_wday );
  11. }
  12.